home *** CD-ROM | disk | FTP | other *** search
GW-BASIC | 1987-05-08 | 851 b | 21 lines |
- 10 CLS
- 20 KEY OFF
- 30 COLOR 7,0
- 40 WIDTH 80
- 50 DEF SEG = 0: POKE 1050,PEEK(1052)
- 60 LOCATE 1,24:PRINT "M U L T I P L I C A T I O N T U T O R I A L"
- 70 LOCATE 5,2:PRINT " This section will guide you through the MULTIPLICATION section of "
- 80 LOCATE 6,2:PRINT "M A T H P A K."
- 90 LOCATE 7,2:PRINT " This section of M A T H P A K, will allow you to multiply as many values as"
- 100 LOCATE 8,2:PRINT "you want."
- 110 LOCATE 9,2:PRINT " EXAMPLE:"
- 120 LOCATE 11,2:PRINT " To multiply 3 * 4 * 6 * 8 =?"
- 130 LOCATE 12,2:PRINT " Enter 4 for 'number of values to be multiplied' and press <RETURN>."
- 140 LOCATE 13,2:PRINT " Then enter the value 3 , press <RETURN>, enter 4, press <RETURN>, etc."
- 150 LOCATE 14,2:PRINT " The product of the values will appear below that."
- 160 LOCATE 15,2:PRINT " To exit to main menu at any time, enter a value of 0 ."
- 170 LOCATE 20,2:PRINT "Press the S P A C E B A R to return to disk tutorial..."
- 180 S$ =INKEY$:IF S$ =" " THEN CLS:CLEAR:CHAIN"a"
- 190 GOTO 180
- 200 END
-